std::regex_iterator
From Cppreference
| C++ Standard Library |
|---|
| Regular expressions library |
| Template:cpp/regex/sidebar content |
| template<
class BidirectionalIterator, | (C++11 feature) | |
| This section is incomplete |
Several specializations for common character sequence types are defined:
| Defined in header
<regex> | |
| Type | Definition |
| cregex_iterator | regex_iterator<const char*> |
| wcregex_iterator | regex_iterator<const wchar_t*> |
| sregex_iterator | regex_iterator<std::string::const_iterator> |
| wsregex_iterator | regex_iterator<std::wstring::const_iterator> |
| This section is incomplete |